home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / othergnu / trmcap10.zoo / makefile.in < prev    next >
Makefile  |  1992-04-13  |  3KB  |  117 lines

  1. # Makefile for GNU termcap library.
  2. # Copyright (C) 1992 Free Software Foundation, Inc.
  3.  
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8.  
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. # GNU General Public License for more details.
  13.  
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18. SHELL = /bin/sh
  19.  
  20. #### Start of system configuration section. ####
  21.  
  22. srcdir = @srcdir@
  23. @VPATH@
  24.  
  25. CC = @CC@
  26.  
  27. # If you don't have a BSD or GNU install program, use cp.
  28. INSTALL = @INSTALL@
  29. INSTALLDATA = @INSTALLDATA@
  30.  
  31. # Things you might add to DEFS:
  32. # -DUSG            If you have memcpy instead of bcopy.
  33. # -DNO_ARG_ARRAY    If you can't take the address of the first of
  34. #            a group of arguments and treat it as an array.
  35.  
  36. DEFS = @DEFS@
  37.  
  38. CDEBUG = -g
  39. CFLAGS = $(CDEBUG) $(DEFS)
  40.  
  41. prefix = /usr/local
  42.  
  43. # Directory in which to install libtermcap.a.
  44. libdir = $(prefix)/lib
  45.  
  46. # Directory in which to install termcap.h.
  47. includedir = $(prefix)/include
  48.  
  49. # Directory in which to optionally also install termcap.h,
  50. # so compilers besides gcc can find it by default.
  51. # If it is empty or not defined, termcap.h will only be installed in
  52. # includedir. 
  53. oldincludedir = /usr/include
  54.  
  55. # Directory in which to install the documentation info files.
  56. infodir = $(prefix)/info
  57.  
  58. #### End of system configuration section. ####
  59.  
  60. # Version of libtermcap distribution.
  61. VERSION = 1.0
  62.  
  63. SRCS = termcap.c tparam.c
  64. OBJS = termcap.o tparam.o
  65. HDRS = termcap.h
  66. DISTFILES = $(SRCS) $(HDRS) COPYING README termcap.texinfo termcap.info* \
  67. texinfo.tex Makefile.in configure configure.in
  68.  
  69. all:    libtermcap.a termcap.info
  70. .PHONY: all
  71.  
  72. install: all
  73.     $(INSTALLDATA) libtermcap.a $(libdir)/libtermcap.a
  74.     -ranlib $(libdir)/libtermcap.a
  75.     cd $(srcdir); $(INSTALLDATA) termcap.h $(includedir)/termcap.h
  76.     cd $(srcdir); test -n "$(oldincludedir)" && \
  77.       $(INSTALLDATA) termcap.h $(oldincludedir)/termcap.h
  78.     cd $(srcdir); $(INSTALLDATA) termcap.info* $(infodir)
  79. .PHONY: install
  80.  
  81. libtermcap.a: $(OBJS)
  82.     ar rc $@ $(OBJS)
  83.     -ranlib $@
  84.  
  85. termcap.info: termcap.texinfo
  86.     makeinfo $termcap.texinfo< --output=$(srcdir)/$@
  87.  
  88. tags:    $(SRCS)
  89.     ctags $(SRCS)
  90.  
  91. TAGS:    $(SRCS)
  92.     etags $(SRCS)
  93.  
  94. clean:
  95.     rm -f *.a *.o core
  96. .PHONY: clean
  97.  
  98. mostlyclean: clean
  99. .PHONY: mostlyclean
  100.  
  101. distclean: clean
  102.     rm -f Makefile config.status
  103. .PHONY: distclean
  104.  
  105. realclean: distclean
  106.     rm -f TAGS tags *.info*
  107. .PHONY: realclean
  108.  
  109. dist: $(DISTFILES)
  110.     echo termcap-$(VERSION) > .fname
  111.     rm -rf `cat .fname`
  112.     mkdir `cat .fname`
  113.     ln $(DISTFILES) `cat .fname`
  114.     tar chZf `cat .fname`.tar.Z `cat .fname`
  115.     rm -rf `cat .fname` .fname
  116. .PHONY: dist
  117.